0bbafb80d0cb88322554c8437568b4c87f604291,hazelcast/src/main/java/com/hazelcast/map/client/MapEvictAllRequest.java,MapEvictAllRequest,reduce,#Map#,62
Before Change
}
final MapService service = getService();
final Address thisAddress = service.getNodeEngine().getThisAddress();
service.publishMapEvent(thisAddress, name, EntryEventType.EVICT_ALL, total);
return total;
}
After Change
}
final MapService service = getService();
final Address thisAddress = service.getNodeEngine().getThisAddress();
if (total > 0) {
service.publishMapEvent(thisAddress, name, EntryEventType.EVICT_ALL, total);
}
return total;
}